home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 20 / AMIGAplus Sonderheft 20 (1999)(ICP)(DE)[!].iso / PublicDomain / Spiele / Choplifter3D / startme < prev    next >
Text File  |  1999-01-01  |  2KB  |  73 lines

  1.  
  2. ; Le scriptje to add sound to the game
  3.  
  4. echo "Type 'game.000 ?' for all options of the game executable"
  5.  
  6.  
  7. run sndhnd  >nil:    ;Start sound handler (-d for debug (memory))
  8.  
  9. ; event -e             ;Filter off  (LED dim)
  10.  
  11. event -l  step  5
  12. event -l  chop  7    ;Load chopper sample and use ID 7
  13. event -a 7           ;Start loop 7
  14.  
  15.  
  16. ; Start the correct version with the correct CPU
  17. ; Try to Determine which mode is fast enough for the CPU
  18.  
  19.  
  20. findcpu 68000
  21. IF WARN
  22.    echo "68000 found, starting in 16 color polygon mode"
  23.    game.000  -p             ;start game in 16 color polygon mode
  24. ENDIF
  25.  
  26. findcpu 68010
  27. IF WARN
  28.    echo "68010 found, starting in 16 color polygon mode"
  29.    game.000  -p             ;start game in 16 color polygon mode
  30. ENDIF
  31.  
  32. findcpu 68020
  33. IF WARN
  34.    IF NOT EXISTS "libs:cybergraphics.library"
  35.       echo "68020 found, starting in 16 grey scale dithered mode"
  36.       game.020  -g -d          ;start game in 16 grey scale dithered mode
  37.    ELSE
  38.       echo "68020 found, starting in CyberGfx mode"
  39.       game.020  -c             ;start game in CyberGfx mode
  40.    ENDIF
  41. ENDIF
  42.  
  43. findcpu 68030
  44. IF WARN
  45.    IF NOT EXISTS "libs:cybergraphics.library"
  46.       echo "68030 found, starting in HAM6 dithered mode"
  47.       game.030  -t -d          ;start game in 16 grey scale dithered mode
  48.    ELSE
  49.       echo "68030 found, starting in CyberGfx mode"
  50.       game.030  -c -u          ;start game in CyberGfx mode
  51.    ENDIF
  52. ENDIF
  53.  
  54. findcpu 68040
  55. IF WARN
  56.    IF NOT EXISTS "libs:cybergraphics.library"
  57.       echo "68040 found, starting in HAM6 dithered mode"
  58.       game.040  -t -d -u       ;start game in 16 grey scale dithered mode
  59.    ELSE
  60.       echo "68040 found, starting in CyberGfx mode"
  61.       game.040  -c -u          ;start game in CyberGfx mode
  62.    ENDIF
  63. ENDIF
  64.  
  65.  
  66.  
  67. event -s 7           ;stop loop 7
  68.  
  69. ; event -o             ;Filter on   (LED bright)
  70.  
  71. event -q             ;Stop sound handler
  72.  
  73.